home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / dev / src / expat-src.lha / expat-1.95.2 / xmlwf / filemap.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-07-28  |  410 b   |  18 lines

  1. /*
  2. Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd
  3. See the file COPYING for copying permission.
  4. */
  5.  
  6.  
  7. #include <stddef.h>
  8.  
  9. #ifdef XML_UNICODE
  10. int filemap(const wchar_t *name,
  11.         void (*processor)(const void *, size_t, const wchar_t *, void *arg),
  12.         void *arg);
  13. #else
  14. int filemap(const char *name,
  15.         void (*processor)(const void *, size_t, const char *, void *arg),
  16.         void *arg);
  17. #endif
  18.